Skip to content

chore(dev-deps): update all non-major dependencies #952

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 4, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint/compat 1.2.7 -> 1.2.8 age adoption passing confidence
@types/node (source) 18.19.80 -> 18.19.86 age adoption passing confidence
@vitest/eslint-plugin 1.1.37 -> 1.1.39 age adoption passing confidence
eslint-import-resolver-typescript 3.9.1 -> 3.10.0 age adoption passing confidence
eslint-plugin-import-x 4.8.0 -> 4.10.0 age adoption passing confidence
eslint-plugin-jsdoc 50.6.6 -> 50.6.9 age adoption passing confidence
eslint-plugin-jsonc (source) 2.19.1 -> 2.20.0 age adoption passing confidence
eslint-plugin-n 17.16.2 -> 17.17.0 age adoption passing confidence
eslint-plugin-prettier 5.2.3 -> 5.2.6 age adoption passing confidence
knip (source) 5.46.0 -> 5.46.5 age adoption passing confidence
pnpm (source) 10.6.3 -> 10.7.1 age adoption passing confidence
rollup (source) 4.35.0 -> 4.39.0 age adoption passing confidence
ts-api-utils 2.0.1 -> 2.1.0 age adoption passing confidence
ts-declaration-location 1.0.6 -> 1.0.7 age adoption passing confidence

Release Notes

eslint/rewrite (@​eslint/compat)

v1.2.8

Compare Source

vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.1.39

Compare Source

Bug Fixes
  • valid-title: report emptyTitle for string-like types (#​688) (c1909ab)

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.38...v1.1.39

v1.1.38

Compare Source

Bug Fixes
  • valid-title: also allow string types with settings.typecheck (#​682) (9fff541)
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.10.0

Compare Source

Minor Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v3.9.1...v3.10.0

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.10.0

Compare Source

Minor Changes
Patch Changes

v4.9.4

Compare Source

Patch Changes

v4.9.3

Compare Source

Patch Changes
  • #​263 c0046a9 Thanks @​JounQin! - chore: migrate to rebranding unrs-resolver with new targets supported:

    • i686-pc-windows-msvc
    • armv7-unknown-linux-musleabihf
    • powerpc64le-unknown-linux-gnu
    • s390x-unknown-linux-gnu

v4.9.2

Compare Source

Patch Changes

v4.9.1

Compare Source

Patch Changes

v4.9.0

Compare Source

Minor Changes

v4.8.1

Compare Source

Patch Changes
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.6.9

Compare Source

Reverts

v50.6.8

Compare Source

Bug Fixes

v50.6.7

Compare Source

Bug Fixes
ota-meshi/eslint-plugin-jsonc (eslint-plugin-jsonc)

v2.20.0

Compare Source

Minor Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.17.0

Compare Source

🌟 Features
  • allow-modules: include virtual: in the modules pattern (#​425) (a109793)
  • node-builtin: Add support for import.meta properties (#​420) (76fc219)
🩹 Fixes
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes
webpro-nl/knip (knip)

v5.46.5

Compare Source

v5.46.4

Compare Source

  • fix: Fix the issue where the built-in Vue compiler only supports <scr… (#​997)
  • Update dependencies (16667d1)

v5.46.3

Compare Source

v5.46.2

Compare Source

  • npm pkg fix (52e2f1f)
  • Upgrade release-it (80281f7)
  • Make server.js production entry in node plugin (89f59f1)
  • Make entry points coming from plugins optional in production mode (resolves #​1000) (f26f95f)

v5.46.1

Compare Source

pnpm/pnpm (pnpm)

v10.7.1: pnpm 10.7.1

Compare Source

Patch Changes

  • pnpm config set should convert the settings to their correct type before adding them to pnpm-workspace.yaml #​9355.
  • pnpm config get should read auth related settings via npm CLI #​9345.
  • Replace leading ~/ in a path in .npmrc with the home directory #​9217.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

v10.7.0

Compare Source

Minor Changes
  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #​9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING]
    The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #​9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes
  • Remove dependency paths from audit output to prevent out-of-memory errors #​9280.

v10.6.5

Compare Source

v10.6.4: pnpm 10.6.4

Compare Source

Patch Changes

  • Fix pnpm dlx with --allow-build flag #​9263.
  • Invalid Node.js version in use-node-version should not cause pnpm itself to break #​9276.
  • The max amount of workers running for linking packages from the store has been reduced to 4 to achieve optimal results #​9286. The workers are performing many file system operations, so increasing the number of CPUs doesn't help performance after some point.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz
rollup/rollup (rollup)

v4.39.0

Compare Source

2025-04-02

Features
  • Do not create separate facade chunks if a chunk would contain several entry modules that allow export extension if there are no export name conflicts (#​5891)
Bug Fixes
  • Mark the id property as optional in the filter for the resolveId hook (#​5896)
Pull Requests

v4.38.0

Compare Source

2025-03-29

Features
  • Support .filter option in resolveId, load and transform hooks (#​5882)
Pull Requests

v4.37.0

Compare Source

2025-03-23

Features
  • Support Musl Linux on Riscv64 architectures (#​5726)
  • Handles class decorators placed before the export keyword (#​5871)
Bug Fixes
  • Log Rust panic messages to the console when using the WASM build (#​5875)
Pull Requests

v4.36.0

Compare Source

2025-03-17

Features
  • Extend renderDynamicImport hook to provide information about static dependencies of the imported module (#​5870)
  • Export several additional types used by Vite (#​5879)
Bug Fixes
  • Do not merge chunks if that would create a top-level await cycle between chunks (#​5843)
Pull Requests
JoshuaKGoldberg/ts-api-utils (ts-api-utils)

v2.1.0

Compare Source

RebeccaStevens/ts-declaration-location (ts-declaration-location)

v1.0.7

Compare Source

Performance Improvements

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added 💙 Renovate Type: Maintenance Generic maintenance tasks, e.g., package updates. labels Apr 4, 2025
Copy link

graphite-app bot commented Apr 4, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • Status: Merge Queue - adds this PR to the back of the merge queue
  • Status: Hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 26c5f94 to dc36b62 Compare April 4, 2025 11:47
@renovate renovate bot merged commit efa4c0a into main Apr 4, 2025
13 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch April 4, 2025 14:32
Copy link

github-actions bot commented Jun 2, 2025

🎉 This PR is included in version 9.0.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions github-actions bot added the Status: Released It's now live. label Jun 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💙 Renovate Status: Released It's now live. Type: Maintenance Generic maintenance tasks, e.g., package updates.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants